Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
pkg-install
Advanced tools
Easier installation of Node.js packages irrespective of the platform or package manager.
npm install pkg-install
const { install } = require('pkg-install');
(async () => {
const { stdout } = await install(
{
twilio: '^3.1',
'node-env-run': '~1',
'pkg-install': undefined,
},
{
dev: true,
prefer: 'npm',
}
);
console.log(stdout);
})();
const { projectInstall } = require('pkg-install');
(async () => {
const { stdout } = await projectInstall({
prefer: 'yarn',
});
console.log(stdout);
})();
Full documentation of available functions and configuration can be found on: pkg-install.dkundel.com
At the current moment yarn
has no equivalent flags for --save-bundle
or --no-save
. These will be ignored when yarn
has been detected as package manager.
The flags that were ignored in the run are returned as the ignoredFlags
property.
package.json
This library uses npm
and yarn
under the hood and currently npm install
and yarn add
have different behaviors when passing versions to the package names
For example
npm install twilio^3.1 node-env-run~1 pkg-install
Will result in the following dependencies in the package.json
:
"dependencies": {
"node-env-run": "^1.0.1",
"pkg-install": "^0.1.1",
"twilio": "^3.28.1"
}
While:
yarn add twilio@^3.1 node-env-run@~1 pkg-install
Will result in the following dependencies in the package.json
:
"dependencies": {
"node-env-run": "~1",
"pkg-install": "^0.1.1",
"twilio": "^3.1"
}
MIT
Thanks goes to these wonderful people (emoji key):
Dominik Kundel 💻 |
This project follows the all-contributors specification. Contributions of any kind welcome!
FAQs
A wrapper making installation of Node.js packages from code easier
We found that pkg-install demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.